0b0fc44e5d28aefbda92631708b40b7f9542c132,core/src/playn/core/Surface.java,Surface,draw,#Tile#number#number#number#number#number#number#number#number#number#,292

Before Change


   */
  public Surface draw (Tile tile, int tint, float dx, float dy, float dw, float dh,
                       float sx, float sy, float sw, float sh) {
    tile.addToBatch(batch, tint, tx(), dx, dy, dw, dh, sx, sy, sw, sh);
    return this;
  }

After Change


   */
  public Surface draw (Tile tile, int tint, float dx, float dy, float dw, float dh,
                       float sx, float sy, float sw, float sh) {
    if (intersects(dx, dy, dw, dh)) {
      tile.addToBatch(batch, tint, tx(), dx, dy, dw, dh, sx, sy, sw, sh);
    }
    return this;
  }